home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 001-025 / scopedisk1 / commtut / gttutor1.txt next >
Text File  |  1995-03-18  |  26KB  |  418 lines

  1. ***************************************************************** 
  2.  
  3. The following text file was captured by me as a result of my call 
  4. to Jim Davis' Retreat (713 497-2306) in Houston, Texas.  I went 
  5. to his board to download GTCTL and GTLOG - two utilities used 
  6. with GT PowerComm.  Jim came on the line to assist as I 
  7. experienced transmission problems.  I took the opportunity to ask 
  8. questions about GT PowerComm and PC communications.  Jim's 
  9. response is being presented here as an aid to other `Neophytes" 
  10. to PC communications. 
  11.  
  12.                        << Raymond Wood >> 
  13.   ... In the vernacular of the communications industry, there are a few
  14. concepts that need to be understood before understanding 'HOW' is
  15. accomplished.  For example, the word BAUD.  This essentially means 'bits per
  16. second'.  In fact, it means something a little different than that, but for
  17. openers, let's say that's what it means.  
  18.   
  19. Now, whenever two machines are going to try to communicate with each other a
  20. couple of things have to be done by both.  They must both be set to send and
  21. receive at the same frequencies, for example.  The most often used frequency,
  22. today, is 1200 baud.  That means 1200 bits per second, as I said before. 
  23. Well, most users have no idea what bits are involved in a file transfer or a
  24. message transfer.  Let's look at another standard word: BYTE.  There are 8
  25. bits of information contained in a byte.  That is, a byte is merely a set of 8
  26. bits.  Within a set of 8 bits there are 256 permutations available.  From all
  27. zeroes to all ones.  Each letter in the alphabet and each digit and each other
  28. special character is represented by a predetermined set pattern of those 8
  29. bits.  A capital 'J' has a different pattern than a lower case 'j', for
  30. example.  Given that that is true, it is easy to see that no more than 128 of
  31. the total possible patterns would be necessary to represent any text.  Thus,
  32. we have another 128 that may be used for 'special purposes'.  What, for
  33. example?  I'll get to that.  
  34.   
  35. The sending of bits (on or off, high or low, in other words binary
  36. information) is, by definition, a binary process.  That is, the computers need
  37. only recognize one of two states.  The telephone, on the other hand, carries
  38. information that is other than binary.  It can faithfully represent different
  39. tones, pitch, and volume.  This is called analog rather than binary.  The
  40. almost sole purpose of a modem is to translate binary signals into analog and
  41. vice versa.  When you  are going to send a set of bits across a telephone you
  42. will have to convert those binary 'states' into some form of sound (which is,
  43. after all, what the telphone is designed to best carry).  Modulating a signal
  44. from binary to analog is the 'Mo' in Modem.  Demodulating an analog signal
  45. back into binary is the reverse and is the 'Dem" in Modem.  
  46.   
  47. If we want the transmission to be highly reliable then we must do more than
  48. simply send the binary information (modulated).  We have all heard 'noise' on
  49. a telephone line and without doing more than demodulating into bits, the
  50. receiver will no doubt have a virtually impossible time of being able to tell
  51. what sounds are bits or just plain noise.  In some applications, we don't
  52. really care all that much.  Examples include the transmission of plain text files.  Recall that all that was necessary to send any letter, many special
  53. symbols and any digit was a capability that required no more than 128
  54. different combinations of bits.  7 bits are sufficient to represent 128
  55. permutations of those bits.  That is, if a byte were only 7 bits long then it
  56. could contain as many as 128 different sets of bits being on or off). 
  57. However, a byte is 8 bits long by definition.  So, in what is called ASCII
  58. (American Standard Code for Information Interchange) transmissions we can use
  59. the first 7 of those bits to represent data and the 8th bit to represent some
  60. form of insurance or integrity check that the first 7 were received as they
  61. were sent. 
  62.  
  63. This is called using 'PARITY'.  You can establish a convention between the
  64. sender and the receiver that every byte WILL have an even number of bits (or
  65. odd) and use the 8th bit to do so at the sending end.  If the receiving end
  66. ever gets a byte that has odd parity then it knows that it received the byte
  67. in error (some bit or bits were either added or lost).  That is all there is
  68. to parity checking in an ASCII transmission.  Not at all very good, but
  69. sufficient for most text.  
  70.   
  71. Program files or data files or even text files that have been compressed
  72. (ARChived) in some way use all 8 bits in every byte to represent information. 
  73. So, we have lost the ability to use parity as an integrity check vehicle. 
  74. Instead, in every protocol other than ASCII we add either one or two full
  75. bytes to the end of a 'block' of bytes.  The block is a fixed length (usually
  76. 128 bytes).  The purpose of those one or two bytes is to contain what is
  77. called a Cyclic Redundance Check (CRC) character or word.  Like parity, the
  78. CRC is constructed at the sending end to create a pattern of bits that
  79. demonstrates that the preceeding entire block of bytes has been received with
  80. integrity.  The Receiving end dynamically creates its own CRC from the
  81. information received and compares it to the byte or bytes received at the end
  82. of a block.  If it doesn't match then the block must be rebroadcast (requested
  83. by sending to the sender a signal that says: "Negative Acknowledge" - NAK.  If
  84. it was ok then it sends an ACK - meaning "Acknowledge", and the next block is
  85. sent.  
  86.   
  87. Now, let's go back to the idea of baud.  At 1200 baud, the modems are able to
  88. send and receive 1,200 bits per second.  How many bits per byte? Yes, 8, but
  89. not on a telephone line if you are using modems!  Instead, we bracket a byte
  90. by sending what is called a start bit before the 8 bits of data and ending
  91. with what we call a stop bit (sometimes 2 - at 300 baud).  So, every byte
  92. requires 10 bits, not 8.  Thus, at 1200 baud your maximum possible data
  93. transfer rate is 120 characters (bytes) per second!  
  94.   
  95. OK.  Now we know what we have to send and how many bits are required and that
  96. there is something called a response from the receiver called either an ACK or
  97. NAK.  So why don't we get 120 bytes per second transfers using 1200 baud
  98. modems?  Well, we already saw that for every 128 bytes of data, in most
  99. protocols, we send an additional one or two bytes of CRC.  We DO NOT count the
  100. CRC byte(s) as data!  Yet it takes time to transmit.  Also, it takes time for
  101. most protocols to turnaround and react to the ACK or NAK.  For example,
  102. assuming all is well, the sender  has a few hundred blocks to upload to the
  103. receiver.  After the first block is sent he, by convention, must wait for the receiver to analyse the CRC and decide if it is going to respond with the ACK
  104. or a NAK.  Then it takes a moment to send that to the sender who, in turn, has
  105. to receive it, verify that it got here properly (was not just noise) and
  106. decide whether to send the next block or to resend to last one that was
  107. improperly received by the receiver.  That takes time.  All time used as
  108. described above is called 'overhead'.  Overhead does not include the
  109. transmission of DATA, only control bits and time.  Thus, it is impossible to
  110. get to an effective DATA transmission rate of even 118 characters per second
  111. let alone 120 (CRC, etc).  But, we know that the telephone is capable of
  112. carrying sound in both directions simultaneously.  So, why should the sender
  113. have to wait for the receivers ACK or NAK?  This mode of operation is often
  114. called 1/2 duplex, by the way.  
  115.   
  116. The answer, of course, is that it does so only by convention.  Newer protocols
  117. do not wait.  They assume that a transmission will be successful and will
  118. result in getting an ACK.  So they go immediately to the task of sending the
  119. next block.  Always listening, of course, for that ACK or NAK.  When it is
  120. received as an ACK all is well and we have gained performance.  If not, the
  121. software has to decide which block or blocks have to be rebroadcast.  In order
  122. to do that it should be obvious that the ACK or NAK is not simply a single
  123. byte.  Rather, it includes a byte that is called the packet number (0 to 255),
  124. and possibly more information.  If an ACK is received the recipient knows
  125. which of a series of blocks(packets) it is referring to.  Similarly it would
  126. know with an NAK.  Yep, more bits and more overhead!  
  127.   
  128. Well, then let's see if I can get to a few more contemporary terms and
  129. information more practical to know at this time.  
  130.   
  131. For example, almost nobody uses ASCII transfers any more.  Why should they
  132. when they are so poorly controlled and when you realize that ONLY
  133. un-compressed raw text can be sent with it?  Still, a great many first time
  134. communications users try to do so. 
  135.  
  136. And, while the transmissions will appear to work, the resulting files will be
  137. garbage, of course.  Only 7 oF the 8 bits are being transmitted in each byte! 
  138. Many comm programs will allow you to use ASCII even when they should know that
  139. the result will be unsatisfactory.  For example, if a filename ends with COM
  140. or EXE then, again by convention, that file is an executable program.  ALL
  141. such programs use 8 bits in every byte and could not, therefore, be
  142. transmitted via ASCII.  Some comm programs will not let you try to do
  143. something that stupid (only, of course, to a knowledgeable user).  
  144.   
  145. What are the protocols that currently exist in wide spread usage across the
  146. country?  The most frequently seen is called XMODEM.  This protocol is quite
  147. reliable (about 96%) and uses blocks of 128 bytes plus one CRC character at
  148. the end of every block.  It is because it uses only one CRC character that the
  149. reliability is only 96%.  
  150.   
  151. Another is called XMODEM/CRC.  This is exactly the same as XMODEM but it uses
  152. two CRC characters.  The result is that the effective performance is reduced
  153. insignificantly (1/130th), but the reliability is increased to about 99.6%.  In any case where you have a choice between the two you would, of course, opt
  154. for XMODEM/CRC.  
  155.   
  156. Then, and this is particulary true in environments where one of the computers
  157. being involved is either a mini or a mainframe, there is a protocol which is
  158. called Kermit.  I believe it uses 128 byte blocks and other overhead such as a
  159. 'header block - block zero' that provides control information.  It is also
  160. very reliable (99.6% I believe) but it is SLOW!!!  It is used only if that is
  161. the only protocol available.  
  162.   
  163. Then there is what is called YMODEM.  This protocol differs from the earlier
  164. ones in that it sends 8 - 128 byte blocks together as a 'super block' before
  165. it sends the two byte CRC word.  As a result it is the fastest protocol that I
  166. have ever seen for micro computers that use 'dumb' modems (ie, non self
  167. correcting ones).  There are two times when one should not use this protocol
  168. if there is a choice: 1) when the line noise is great on the telephone (for a
  169. retransmission of a 'block' that failed involves 1024+2 bytes even if only one
  170. bit was gained or lost).  That is a lot of overhead!  And 2), in an
  171. environment like PC-PURSUIT that involves long duration hand shaking
  172. turnaround delays.  
  173.   
  174. Another protocol is called Telink.  Telink uses 128 byte blocks but has an
  175. advantage over the other ones.  It results in a file that is exactly the same
  176. size and has the same date and time stamp on it as the one being sent. 
  177. Ymodem, for example, adds to (pads) a block until it is exactly 1024 bytes
  178. (the last record) even if that record only contains a few bytes of data.  
  179.   
  180. GT PowerComm has a unique protocol called 1kTelink.  It is the same as Telink
  181. except it uses 1024 byte blocks and is therefore more efficient.  Like YMODEM,
  182. 1kTelink should only be used on clean phone lines for performance, but unlike
  183. YMODEM it can be used on even a short file with efficiency.  
  184.   
  185. In the case of GT, and then only if communicating GT to GT, if either YMODEM
  186. or 1kTelink experience a set of 6 errors during the transmission of a single
  187. file then it will automatically fallback to 128 byte blocks to greatly
  188. increase the odds that the transmission can be completed and to greatly
  189. increase the efficiency on what is presumed to be a noisy line!!!  Neat!!!  
  190.   
  191. The BEST protocol at this time for use in a PC-PURSUIT environment is called
  192. Wxmodem which stands for 'Windowing Xmodem'.  This uses 128 byte blocks but it
  193. does not wait between blocks for a response.  It is always listening for those
  194. ACKs and NAKs, of course.  Extremely high performance is the result, relative
  195. to Xmodem or the other 1/2 duplex protocols.  Wxmodem tries to stay 4 blocks
  196. ahead of the receiver at all times while the receiver tries to get 'caught
  197. up'.  The difference between the block being sent and the most currently
  198. received ACK or NAK is called the window (a number between 1 and 4). 
  199.  
  200. Then there are two more odd protocols that have become relatively visible of
  201. late.  These are called ZMODEM and Batch-YAM.  ZMODEM was designed for use in
  202. a PC-PURSUIT like environment.  Like WXMODEM, the best protocol for use in
  203. that environment, ZMODEM does not wait for ACKs and NAKs.  Unlike WXMODEM,
  204. ZMODEM is relatively slow.  For one reason, it uses no buffering.  Thus every 512 bytes of data it must make another disk access.  Batch-YAM is much like
  205. YMODEM except that it allows you to specify a set of file names (a 'batch' of
  206. them).  It is slower than YMODEM except, possibly on PC-PURSUIT.  
  207.   
  208. What must a user know to do a file transfer?  What protocol is available on
  209. BOTH ends of the transmission, the file name of the file on his end and the
  210. file name on the other end.  That is, if the receiveing end of a transmission
  211. already has a file with the name of the file you want to send to it, naturally
  212. you will call the new file something else.  Thus, every comm program allows
  213. the specification of the file name on your end and then the name on the other
  214. end.  (It is not just an irritant that you 'already' typed that in, it is
  215. necessary).  Having said that I must make an  exception  - Telink  and
  216. 1kTelink.   These protocols allow batch names,  like Batch-YAM,  but the
  217. receiving end and transmitting end file names are the same. 
  218.  
  219. That's it for now.  
  220.  
  221. Wood: I have a few questions. ok?  
  222.  
  223. Davis: Sure.  
  224.   
  225. Wood: Four to be exact.   
  226.  
  227. 1- You mention date/time stamp on one of your protocol descriptions but did
  228. not define its use prior to that.  What is this and what is it used for? 
  229.   
  230. PC-DOS or MS-DOS marks every file with the date and time that file was created
  231. or last modified.  So, let's say I want to send you a copy of my transmission
  232. log that was dated 12/31/86 (by DOS).  If I use any protocol other that Telink
  233. the resulting file on your end will be dated with the date and time it was
  234. created (ON YOUR SYSTEM!)  Today, now.  Telink creates that file and leaves it
  235. on your system with my date and time stamp still intact.  
  236.   
  237. When I receive an ARCed file this time/date stamp is in the EXE module
  238. somewhere?  
  239.   
  240. Davis: It is several places in that example.  In the directory record on your
  241. disk is the formal residence of the stamp.  So, in the case of an ARC file, it
  242. has a date and time stamp.  Additionally, within the ARC file each record,
  243. which is merely another way of saying 'each file within the ARC file', has the
  244. date and time that THAT file had in its directory record BEFORE it had been
  245. ARCed into the ARC file.  When you unARC, the resulting file will not have
  246. todays date and time as a stamp but the one recorded within the ARC file for
  247. it.  
  248.   
  249. Wood: Good, I understand perfectly.  I can relate it to what we sometimes do
  250. on the mainframe.  
  251.    
  252. 2-You mentioned padding with YMODEM.  What is this?  Does the receiving end
  253. recognize the padding and discard it automatically? 
  254.   
  255. Davis: Let's say the file you want to send is exactly 1025 bytes long.  
  256. Each block transmitted by YMODEM contains 1024 bytes of date plus 2 bytes of
  257. CRC.  It will, therefore, take two blocks to send that file.  The second block
  258. will contain only 1 byte of data plus 1023 padded "blanks" - actually End Of
  259. File marks.  YMODEM sends 1024 bytes every time!.  The receiver does not
  260. automatically strip those padded bytes.  Indeed, it passes them to the
  261. resulting file so that it will always be an even multiple of the 1024.  Thus,
  262. you sent a 1025 byte file and it becomes a 2048 byte file!!     Wood:
  263. Ok--3...You came to a conclusion without what I thought was the necessary
  264. support when you said "...thus 512 bytes result in a disk access with
  265. ZMODEM..."  
  266.  
  267. I did not follow the conclusion. Help!    
  268.  
  269. Davis: Sure.  As we discussed before the tutorial when we talked about
  270. buffers, a buffer is a fixed length (amount) of memory, sufficient to contain
  271. some number of blocks of data.  In the case of ZMODEM, a block is 256 bytes,
  272. by the way.  If the protocol used buffers there could be some large multiple
  273. of 'blocks' in memory awaiting transmission.  Instead,  ZMODEM does not use a
  274. buffer.  Thus, it must have in memory only one sector of data at a time.  In
  275. the PC world, a sector is 512 bytes, or two blocks of data as far as ZMODEM is
  276. concerned.  Again, since that is the case, after two blocks (512 bytes),
  277. ZMODEM must go back to the disk to get more data to transmit.    
  278.  
  279. Wood: One of the first things we learned in programming school 20+ years ago
  280. was that you could do things a lot faster with more than one buffer.  WE
  281. typically (or the system) use at least two.  Why would ZMODEM not use any?  Is
  282. there a memory problem?    
  283.  
  284. Davis: I can't speak for the authors of ZMODEM but I will say that it is
  285. typically not a protocol that is written into a program like GT PowerComm (As
  286. is Xmodem or Wxmodem, etc.).  Instead, it comes rather conveniently in the
  287. form of an EXE program that can be run independantly of the comm package or by
  288. a simple shell out of the comm package to it.  In the latter case, there is no
  289. way to know how much memory might be available in the majority of systems. 
  290. The program itself, could, of course, simply find out.  But you will recall
  291. that BOTH ends of a transmission are highly dependant upon compatible
  292. software.  It might be that the author of ZMODEM simply took the easy way out. 
  293. I don't know.     
  294.  
  295. Wood: This leads nicely into my final question which deals with today's comm
  296. packages.  When I first bought my PC I did the necessary research by reading
  297. reviews and magazines like Software Digest.  I rejected XTALK and settled on
  298. HYPERACCESS.  After I started using it I discovered Shareware.  I have come to
  299. the conclusion that there are two classes of products in the Micro world
  300. today.  Commercially developed and other.  My company uses XTALK.  In the
  301. corporate environment you order a comm package and you get what the corporate
  302. gurus decide is best for you.    I like ProCommm.  I do not like to feel that
  303. I was ripped off by buying HyperAccess.  I just feel that I was uninformed at
  304. the time.  In this area ProComm seems to reign as King with the majority of PC
  305. users.    4- What are the advantages of GT over ProComm?    
  306.  
  307. Davis: Excellent question.  Let me try to deal with it professionally instead
  308. of from the bias I would naturally have for GT PowerComm.  (When I wrote the
  309. documentation for GT I twice called it ProComm - how embarrassing it would
  310. have been if I had released it without an edit).    Let's go back a little in
  311. time.  
  312.  
  313. Before the era of the PC virtually all micro computers were 8 bit in design
  314. rather than 16.  At that time the undisputed King in the area of comm packages
  315. was Crosstalk.  It enjoyed an excellent reputation and was well supported. 
  316. Further, it was not terribly expensive and it was one of the only comm
  317. packages that supported what was to become a whole set of protocol transfer
  318. methods (it was an XMODEM protocol).  Well, in those days if your comm package
  319. didn't work reliably and you were not sure if it was a hardware problem or a
  320. software problem you simply put up Crosstalk.  If it worked the conclusion was
  321. that the problem was software.  It was THAT reliable.    
  322.  
  323. Along came the PC's.  Crosstalk was ported to the 16 bit world, but in a way
  324. that made very little progress in terms of adapting to the capabilities of the
  325. PC's.  To this very day, I believe it is impossible to change directories in
  326. Crosstalk, though I could be wrong.  In essence, Crosstalk continues to be
  327. available and though it runs reliably in a 16 bit environment it runs like it
  328. was in a CP/M environment, not a DOS one.    
  329.  
  330. Then there was a leading contender from the shareware world called QMODEM.  It
  331. enjoyed an excellent following and was remarkably efficient by comparison to
  332. Crosstalk - MUCH faster, in fact.  And, it had a couple of contemporary
  333. protocols not available in Crosstalk.  It took off and has been a very
  334. successful product ever since.  In my opinion it would still be a champion
  335. product save only for a few 'author' problems. It is a great program,
  336. nonetheless.  
  337.  
  338. About the same time the Hayes Modem manufacturers introduced SmartComm II as a
  339. commercial product and it was being shipped with many of their modems.  By
  340. brand identification it was accepted.  This, despite that it is the clumsiest
  341. of all the comm packages I have ever seen.  It was, furthermore, not very
  342. efficient by comparison to QMODEM.  It has essentially been unchanged since
  343. its introduction (Sound like Crosstalk all over again?)    
  344.  
  345. A new comm package hit the scene called ProComm.  In this program the author
  346. spent a great deal of attention to 'image'.  He used imaginative ideas like a
  347. whistle that announced opening and closing of windows, the windows themselves
  348. were innovative, etc.  It was no where near as efficient as QMODEM, but it
  349. captured the imagination of the users.  And, like QMODEM, the price was right
  350. - $0 to try it out, and then if you decided to, you sent them a small check -
  351. but that's shareware.    Procomm has advanced far faster than QMODEM in terms
  352. of incorporating different protocols and the incorporation of what is called a
  353. Host mode, or unattended mode of operation (autoanswer of modem, etc.)  It
  354. became King as you call it by being both innovative and current - but not by
  355. being efficient, though it is quite respectable.    
  356.  
  357. GT PowerComm was only formally announced to the shareware world on the 21st of
  358. last month!!!(2/21/87).  It includes 8 protocols, not including the also present ASCII, of course.  At 2400 baud, I routinely establish DATA transfer
  359. rates of 235.5 characters per second with it, while the best I ever got with
  360. Qmodem was about 220 and with Procomm about 218.  Actually, I did get a 225
  361. once with Qmodem, but only once.    So, in terms of performance, nothing has
  362. come close to being as fast as GT PowerComm.  But that, as we saw with
  363. Procomm, is not all that the user is looking for.  We have incorporated an
  364. extremely rich function called the LOG.  Into that log is recorded all
  365. connects, disconnects, messges to the host, passwords used to gain access, bad
  366. passwords tried, and even more interesting, the names and time to trasmit
  367. every file that goes from the GT to or from another computer, and along with
  368. that is the total byes involved and the name of the protocol used in the
  369. transmission and, finally, manually created notes and messages.  
  370.  
  371. So what, you might ask.  I would answer that if you were the Sysop of a board,
  372. or of a Corporate system, you MUST be able to determine who sent you a file or
  373. a messgage and when.  (Yes, date and time stamps are included in all entries
  374. in the log).  For example, what would be your reaction if you found that  a
  375. program on your disk was a trojan horse if you could not determine where it
  376. came from?  Or, say you created a proforma for your department and it has been
  377. downloaded by 18 different executives before you discover a major error in it. 
  378. Wouldn't you want to be able to determine who has received that file?  All
  379. those kinds of questions are automaticlly answered via GT's log and GTLOG. 
  380.  
  381.  
  382. The main reason for feeling that there is a substantial difference between GT
  383. and Procomm for the user is in the area of SUPPORT.  I take it that it has
  384. occurred to you that I have been talking to you for more than three hours
  385. already?  And I don't even know if you are a registered user of GT.  Well, I
  386. am only one of two of us that do exactly the same thing.  The author of GT
  387. PowerComm, Paul Meiners, provides 24 hour a day access to his system as I do
  388. (as the author of the companion software).  We have provided many new versions
  389. of GT powerComm over the past year and are about to provide release 12.10 only
  390. two weeks after announcing 12.00 on the 21st!  Why, because we are constantly
  391. enhancing the products and our users want us to do so.  We have several major
  392. clients already including one of the major Oil companies, one of the major
  393. airlines and one of the countries largest school districts!!!  Finally, nobody
  394. has a better Host mode than GT PowerComm!!!  I run a BBS using nothing else. 
  395. That is power and function!  Try it, you'll love it!!    
  396.  
  397. Wood: I can't wait to put the system together!  Rest assured that I will
  398. register the program.  As an ex-programmer I know what is involved.  I wish
  399. the product much luck.   Did you say 3 hours?    
  400.  
  401. Davis: I believe so.  I don't remember, but I reset the 1 hour time limit I
  402. gave you twice now, possibly three times.  By the way, as a favor to me in
  403. exchange for the time, would you mind terribly ARCing your capture file and
  404. sending me a copy.  I can make it available as a tutorial to others.  And if
  405. you will make it available to others as well, it is possible that they will
  406. come to know GT PowerComm as well.    
  407.  
  408. Wood: No problem.  I will not be able to do this for a couple of days however. 
  409. My modem is on the blink and I am waiting for a replacement.  I will upload GT and the Log and CTL files to all of the bulletin boards that I normally deal
  410. with.  I have already uploaded it to the corporate BBS.  I do expect to get
  411. some healthy ribbing from the ProComm lovers which is why I asked the question
  412. that I did.  For now though I would like to get the Log file.    
  413.  
  414. Davis: Thanks for the opportunity to be of help.  I too  must get to work. 
  415. So, I'll take you out of chat mode.  Don't forget to 'close' your capture
  416. file.    You have 48 minutes left.                               Jim Davis'
  417. Retreat    Voice 713 558-5015                                               
  418. Data  713 497-2306